home *** CD-ROM | disk | FTP | other *** search
/ Minami 58 / MINAMI58.ISO / Varios / Juegos Flash / Gold Yard.exe / scripts / DefineButton2_326 / BUTTONCONDACTION on(keyPress Tab).as next >
Text File  |  2003-04-29  |  338b  |  16 lines

  1. on(keyPress "<Tab>"){
  2.    if(_root.gameover == 0)
  3.    {
  4.       if(_root.map_switch == 0)
  5.       {
  6.          _root.map_switch = 1;
  7.          _root.mapengine.gotoAndPlay("mapopen");
  8.       }
  9.       else if(_root.map_switch == 1)
  10.       {
  11.          _root.map_switch = 0;
  12.          _root.mapengine.gotoAndPlay("mapclose");
  13.       }
  14.    }
  15. }
  16.